Android dosya okuma
01.07.2015 - 12:56
Arkadaşlar Dosyadan veri okumaya çalışıyorum ama sürekli olarak catch bloğuna düşüyor dosya bulunamıyor anlamadım gitti herşeyi denedim bir türlü dosyayı okutamadım Kodumu sizle paylaşıyorum eğer bir yerde hatam varsa söylerseniz sevinirim.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FileInputStream fr= null;
TextView tt=(TextView) findViewById(R.id.tx);
try {
fr =openFileInput("ss.txt");
InputStreamReader isr=new InputStreamReader(fr, Charset.forName("ISO-8859-9"));
BufferedReader bf=new BufferedReader(isr);
String line=bf.readLine();
String a = null;
while(line!=null){
String[] par=line.split(" ");
a=par[0];
line=bf.readLine();
}
tt.setText(a);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
162
Görüntülenme
0 Beğeni